home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 353_02 / usedate.cpp < prev    next >
C/C++ Source or Header  |  1992-01-18  |  743b  |  29 lines

  1.                                // Chapter 5 - Program 12
  2. // This is a very limited test of the date class
  3.  
  4. #include <iostream.h>
  5. #include "date.h"
  6.  
  7. void main(void)
  8. {
  9. date today, birthday;
  10.  
  11.    birthday.set_date(7, 21, 1960);
  12.    cout << "Limited test of the date class\n";
  13.    cout << "Today is " << today.get_date_string() << "\n";
  14.    cout << "Birthday is " << birthday.get_date_string() << "\n";
  15.  
  16.    today.set_date_format(4);
  17.    cout << "Today is " << today.get_date_string() << "\n";
  18.    cout << "Birthday is " << birthday.get_date_string() << "\n";
  19. }
  20.  
  21.  
  22. // Result of execution
  23.  
  24. // Limited test of the date class
  25. // Today is Jan 20, 1992
  26. // Birthday is Jul 21, 1960
  27. // Today is 20 Jan 1992
  28. // Birthday is 21 Jul 1960
  29.